summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNarr the Reg <juangerman-13@hotmail.com>2023-02-13 20:26:00 +0100
committerbunnei <bunneidev@gmail.com>2023-06-03 09:05:30 +0200
commit5b80dee181ef6a86d356c54edb0dbccb8f1cac83 (patch)
tree0e1b94e765ff82567386539ef8f7c6da862729e0
parentandroid: Clean joystick overlay (diff)
downloadyuzu-5b80dee181ef6a86d356c54edb0dbccb8f1cac83.tar
yuzu-5b80dee181ef6a86d356c54edb0dbccb8f1cac83.tar.gz
yuzu-5b80dee181ef6a86d356c54edb0dbccb8f1cac83.tar.bz2
yuzu-5b80dee181ef6a86d356c54edb0dbccb8f1cac83.tar.lz
yuzu-5b80dee181ef6a86d356c54edb0dbccb8f1cac83.tar.xz
yuzu-5b80dee181ef6a86d356c54edb0dbccb8f1cac83.tar.zst
yuzu-5b80dee181ef6a86d356c54edb0dbccb8f1cac83.zip
-rw-r--r--src/android/app/src/main/java/org/yuzu/yuzu_emu/overlay/InputOverlay.java78
1 files changed, 50 insertions, 28 deletions
diff --git a/src/android/app/src/main/java/org/yuzu/yuzu_emu/overlay/InputOverlay.java b/src/android/app/src/main/java/org/yuzu/yuzu_emu/overlay/InputOverlay.java
index 6b51a596f..50c95d1de 100644
--- a/src/android/app/src/main/java/org/yuzu/yuzu_emu/overlay/InputOverlay.java
+++ b/src/android/app/src/main/java/org/yuzu/yuzu_emu/overlay/InputOverlay.java
@@ -341,34 +341,6 @@ public final class InputOverlay extends SurfaceView implements OnTouchListener {
return onTouchWhileEditing(event);
}
- int pointerIndex = event.getActionIndex();
-
- if (mPreferences.getBoolean("isTouchEnabled", true)) {
- switch (event.getAction() & MotionEvent.ACTION_MASK) {
- case MotionEvent.ACTION_DOWN:
- case MotionEvent.ACTION_POINTER_DOWN:
- if (NativeLibrary.onTouchEvent(event.getX(pointerIndex), event.getY(pointerIndex), true)) {
- mTouchscreenPointerId = event.getPointerId(pointerIndex);
- }
- break;
- case MotionEvent.ACTION_UP:
- case MotionEvent.ACTION_POINTER_UP:
- if (mTouchscreenPointerId == event.getPointerId(pointerIndex)) {
- // We don't really care where the touch has been released. We only care whether it has been
- // released or not.
- NativeLibrary.onTouchEvent(0, 0, false);
- mTouchscreenPointerId = -1;
- }
- break;
- }
-
- for (int i = 0; i < event.getPointerCount(); i++) {
- if (mTouchscreenPointerId == event.getPointerId(i)) {
- NativeLibrary.onTouchMoved(event.getX(i), event.getY(i));
- }
- }
- }
-
for (InputOverlayDrawableButton button : overlayButtons) {
if (!button.updateStatus(event)) {
continue;
@@ -395,11 +367,61 @@ public final class InputOverlay extends SurfaceView implements OnTouchListener {
NativeLibrary.onGamePadEvent(NativeLibrary.TouchScreenDevice, joystick.getButtonId(), joystick.getButtonStatus());
}
+ if (!mPreferences.getBoolean("isTouchEnabled", true)) {
+ return true;
+ }
+
+ int pointerIndex = event.getActionIndex();
+ int xPosition = (int) event.getX(pointerIndex);
+ int yPosition = (int) event.getY(pointerIndex);
+ int pointerId = event.getPointerId(pointerIndex);
+ int motion_event = event.getAction() & MotionEvent.ACTION_MASK;
+ boolean isActionDown = motion_event == MotionEvent.ACTION_DOWN || motion_event == MotionEvent.ACTION_POINTER_DOWN;
+ boolean isActionMove = motion_event == MotionEvent.ACTION_MOVE;
+ boolean isActionUp = motion_event == MotionEvent.ACTION_UP || motion_event == MotionEvent.ACTION_POINTER_UP;
+
+ if (isActionDown && !isTouchInputConsumed(pointerId)) {
+ NativeLibrary.onTouchEvent(xPosition, yPosition, true);
+ }
+
+ if (isActionMove) {
+ for (int i = 0; i < event.getPointerCount(); i++) {
+ int fingerId = event.getPointerId(i);
+ if (isTouchInputConsumed(fingerId)) {
+ continue;
+ }
+ NativeLibrary.onTouchMoved(event.getX(i), event.getY(i));
+ }
+ }
+
+ if (isActionUp && !isTouchInputConsumed(pointerId)) {
+ NativeLibrary.onTouchEvent(xPosition, yPosition, false);
+ }
+
invalidate();
return true;
}
+ private boolean isTouchInputConsumed(int track_id) {
+ for (InputOverlayDrawableButton button : overlayButtons) {
+ if (button.getTrackId() == track_id) {
+ return true;
+ }
+ }
+ for (InputOverlayDrawableDpad dpad : overlayDpads) {
+ if (dpad.getTrackId() == track_id) {
+ return true;
+ }
+ }
+ for (InputOverlayDrawableJoystick joystick : overlayJoysticks) {
+ if (joystick.getTrackId() == track_id) {
+ return true;
+ }
+ }
+ return false;
+ }
+
public boolean onTouchWhileEditing(MotionEvent event) {
// TODO: Reimplement this
return true;